home *** CD-ROM | disk | FTP | other *** search
- /*=============================================================================================================
-
- The Mandelbrot Set (International) Ltd. may be reached by the following means:
-
- Email:
- ------
- CIS: 100016,2751
- Internet: 100016.2751@Compuserve.com
-
- FAX: (+44) 01451 860142.
-
- Telephone: (+44) 0941 117534.
-
- TMS accepts no liability whatsoever for this code.
- ==================================================
-
- Very simple DLL function, but a necessary one, that simply copies one
- WINDOWPOS struct to another. This is called from the BLOWUP Visual Basic
- sample application and is required as Visual Basic doesn't have a pointer
- type or a method/function that is free of type checking that can copy one
- bit of memory to another.
-
- =============================================================================================================*/
- #include <windows.h>
-
- BOOL __export far pascal nGetWindowPos(LPWINDOWPOS tDest, LPWINDOWPOS tSrce)
- {
- /* Structure assignment (good ol' ANSI!). */
- *tDest = *tSrce;
-
- return TRUE;
- }
-
- /*=============================================================================================================
- EOF (Yup, that's REALLY all there is in it folks!)
- =============================================================================================================*/